<EditItemTemplate>
   <tr style="background-color:#008A8C;color: #FFFFFF;">
      <td>
         <asp:Button ID="UpdateButton" runat="server" 
          CommandName="Update" Text="Zmodyfikuj" />
         <asp:Button ID="CancelButton" runat="server" 
          CommandName="Cancel" Text="Anuluj" />
      </td>
      <td>
         <asp:Label ID="CustomerIDLabel1" runat="server" 
          Text='<%# Eval("CustomerID") %>' />
      </td>
      <td>
         <asp:TextBox ID="CompanyNameTextBox" runat="server" 
          Text='<%# Bind("CompanyName") %>' />
      </td>
      <td>
         <asp:TextBox ID="ContactNameTextBox" runat="server" 
          Text='<%# Bind("ContactName") %>' />
      </td>
   </tr>
</EditItemTemplate>
